home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Commands / PImport.h < prev    next >
C/C++ Source or Header  |  1996-07-13  |  851b  |  46 lines

  1. /*
  2.  *--- PImport.h -----------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PImport__
  10. #define __PImport__
  11.  
  12. #include "PMTypes.h"
  13.  
  14. class PRequestBuf;
  15.  
  16. class PImport
  17. {
  18.  
  19. public:
  20.  
  21.     PImport
  22.       (    const char *    fFilename,
  23.         short            cAsWhat,
  24.         short            bRetain = true,
  25.         short            bConvert = true,
  26.         short            bTags = true,
  27.         short            bRetainCrop = false);
  28.  
  29.     PImport
  30.       (    const char *    fFilename,
  31.         short            cAsWhat,
  32.         short            bRetain,
  33.         short            bConvert,
  34.         short            bTags,
  35.         short            bRetainCrop,
  36.         PRequestBuf&    filters );
  37.  
  38. private:
  39.  
  40.     PImport();
  41. };
  42.  
  43. #endif
  44.  
  45. // end of PImport.h
  46.